home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wsc4c21.zip / TERM16._M_ < prev    next >
Text File  |  1997-05-22  |  1KB  |  45 lines

  1. #
  2. # Microsoft makefile for TERM [Win16]
  3. #
  4. # To use: "NMAKE TERM16._M_"
  5. # (use NMAKE, not MAKE)
  6. #
  7.  
  8. CCFLAGS = -c -AS -G2sw -Oas -Zp
  9.  
  10. term.exe: term.res term.obj term.def sioerror.obj wsc16.lib mio16.lib \
  11.            about.obj config.obj line.obj xydriv16.lib \
  12.            paint.obj menu.obj accept.obj ansi.obj
  13.     link /NOD /NOE  @term.rsp,,,libw slibcew wsc16 mio16 xydriv16,term.def;
  14.     rc term.res
  15.  
  16. term.res: term.rc term.h
  17.     rc -r term.rc
  18.  
  19. about.obj: about.c about.h
  20.    cl $(CCFLAGS)  about.c
  21.  
  22. accept.obj: accept.c accept.h
  23.    cl $(CCFLAGS)  accept.c
  24.  
  25. ansi.obj: ansi.c ansi.h
  26.    cl $(CCFLAGS)  ansi.c
  27.  
  28. config.obj: config.c config.h wsc.h
  29.     cl $(CCFLAGS)  config.c
  30.  
  31. line.obj: line.c line.h wsc.h
  32.     cl $(CCFLAGS)  line.c
  33.  
  34. menu.obj: menu.c menu.h wsc.h
  35.     cl $(CCFLAGS)  menu.c
  36.  
  37. paint.obj: paint.c paint.h wsc.h
  38.     cl $(CCFLAGS)  paint.c
  39.  
  40. term.obj: term.c term.h wsc.h
  41.    cl $(CCFLAGS)  term.c
  42.  
  43. sioerror.obj: sioerror.c sioerror.h wsc.h
  44.    cl $(CCFLAGS)  sioerror.c
  45.